home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / ear / mui23dev.lha / MUI / Developer / Autodocs / MUI_Slider.doc < prev    next >
Text File  |  1994-12-23  |  2KB  |  88 lines

  1. TABLE OF CONTENTS
  2.  
  3. Slider.mui/Slider.mui
  4. Slider.mui/MUIA_Slider_Level
  5. Slider.mui/MUIA_Slider_Max
  6. Slider.mui/MUIA_Slider_Min
  7. Slider.mui/MUIA_Slider_Quiet
  8. Slider.mui/MUIA_Slider_Reverse
  9. Slider.mui/Slider.mui
  10.  
  11.     The slider class generates a gui element that allows a
  12.     user to adjust a numeric value. The programmer has not
  13.     very much influence on the slider's outfit, there are
  14.     only very few tags available. Future versions of MUI
  15.     will probably include some preferences options to
  16.     allow the user (*not* the programmer) to configure
  17.     this outfit.
  18.  
  19.     Note that since slider is a subclass of group class,
  20.     you can get horizontal or vertical sliders by simply
  21.     using the MUIA_Group_Horiz attribute. Default is
  22.     a horizontal slider.
  23. Slider.mui/MUIA_Slider_Level
  24.  
  25.     NAME
  26.     MUIA_Slider_Level -- (V4 ) [ISG], LONG
  27.  
  28.     FUNCTION
  29.     The current position of the slider knob. This value
  30.     is guaranteed to be between MUIA_Slider_Min and
  31.     MUIA_Slider_Max.
  32.  
  33.     EXAMPLE
  34.     /* vertical task priority slider */
  35.     SliderObject,
  36.        MUIA_Group_Horiz , FALSE,
  37.        MUIA_Slider_Min  , -20,
  38.        MUIA_Slider_Max  ,  20,
  39.        MUIA_Slider_Level,   0,
  40.        End;
  41.  
  42.     SEE ALSO
  43.     MUIA_Slider_Min, MUIA_Slider_Max
  44. Slider.mui/MUIA_Slider_Max
  45.  
  46.     NAME
  47.     MUIA_Slider_Max -- (V4 ) [ISG], LONG
  48.  
  49.     FUNCTION
  50.     Adjust the maximum value for a slider object.
  51.  
  52.     SEE ALSO
  53.     MUIA_Slider_Min, MUIA_Slider_Level
  54. Slider.mui/MUIA_Slider_Min
  55.  
  56.     NAME
  57.     MUIA_Slider_Min -- (V4 ) [ISG], LONG
  58.  
  59.     FUNCTION
  60.     Adjust the minimum value for a slider object.
  61.     Of course you can use negative number, e.g.
  62.     for a slider to adjust task priority.
  63.  
  64.     SEE ALSO
  65.     MUIA_Slider_Max, MUIA_Slider_Level
  66. Slider.mui/MUIA_Slider_Quiet
  67.  
  68.     NAME
  69.     MUIA_Slider_Quiet -- (V6 ) [I..], BOOL
  70.  
  71.     FUNCTION
  72.     When set to TRUE, the slider doesn't display it's current
  73.     level in a text object.
  74.  
  75.     SEE ALSO
  76.     MUIA_Slider_Level
  77. Slider.mui/MUIA_Slider_Reverse
  78.  
  79.     NAME
  80.     MUIA_Slider_Reverse -- (V4 ) [ISG], BOOL
  81.  
  82.     FUNCTION
  83.     Setting this attribute to TRUE will reverse the direction
  84.     of the slider.
  85.  
  86.     SEE ALSO    
  87.     MUIA_Slider_Min, MUIA_Slider_Max, MUIA_Slider_Level
  88.